Current File : /home/jeconsul/public_html/wp-content/plugins/presto-player/src/router/utils.js
import qs from "querystringify";
export function locationToRoute(location) {
// location comes from the history package
return {
path: location.pathname,
hash: location.hash,
query: qs.parse(location.search),
};
}